home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / DriverPropertyInfo.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-30  |  609 b   |  15 lines

  1. package symjava.sql;
  2.  
  3. public class DriverPropertyInfo {
  4.    public String name;
  5.    public String description;
  6.    public boolean required = false;
  7.    public String value;
  8.    public String[] choices;
  9.  
  10.    public DriverPropertyInfo(String name, String value) {
  11.       this.name = name;
  12.       this.value = value;
  13.    }
  14. }
  15.